1 min read
I want to install a newly developed python package before releasing it down on the PyPI platform. How can I test it down before releasing it on the PyPI platform?
FreshlyBuilt Answered question
1 min read
Here is an alternative command to install a developmental package.
pip install -e .
FreshlyBuilt Edited answer
1 min read
Here is the command for installing newly developed or any python package on local system.
python setup.py install
For Linux User, They can try this out.
sudo python setup.py install
Vishal Sharma Answered question