Trying to install this repository:
pip install git+https://github.com/xplip/pixel
Collecting git+https://github.com/xplip/pixel
Cloning https://github.com/xplip/pixel to ./tmp/pip-req-build-ijxd55pn
Running command git clone --quiet https://github.com/xplip/pixel /home/nlp/amit/tmp/pip-req-build-ijxd55pn
Resolved https://github.com/xplip/pixel to commit efb38f5
Running command git submodule update --init --recursive -q
Preparing metadata (setup.py) ... done
Then
Traceback (most recent call last):
File "", line 1, in
ModuleNotFoundError: No module named 'pixel'
I guess it does not install the actual python "package" called "pixel".
If you would add PyPi distribution as well, it would not need to also install the git submodules, which actually takes long as datasets is big.
Here's my suggestion:
#3
However, the name pixel is taken, so you would need to come up with a different pypi package name (this does not change the fact that the installed package will be called pixel)
Trying to install this repository:
Then
python -c "import pixel"I guess it does not install the actual python "package" called "pixel".
If you would add PyPi distribution as well, it would not need to also install the git submodules, which actually takes long as
datasetsis big.Here's my suggestion:
#3
However, the name
pixelis taken, so you would need to come up with a different pypi package name (this does not change the fact that the installed package will be calledpixel)