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 January 17, 2021
1 min read
Here is an alternative command to install a developmental package.
pip install -e .
FreshlyBuilt Edited answer January 17, 2021
1 min read
You can use this also:-
python setup.py develop
Sankalp Answered question November 12, 2020
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 November 7, 2020