You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running sudo pip via os.system should absolutely be removed, as it installs libraries for root user, even if the current user has a virtual environment.
I will probably try and use it when it's well packaged :)
Keep up the good work!
The text was updated successfully, but these errors were encountered:
Hello,
I see that
setup.py
file as actually somesystem
command running as sudo, which is not a good practice.setup.py
is a well known file for packaging python applications (https://packaging.python.org/tutorials/packaging-projects/) and it should be used as so.Running
sudo pip
viaos.system
should absolutely be removed, as it installs libraries for root user, even if the current user has a virtual environment.I will probably try and use it when it's well packaged :)
Keep up the good work!
The text was updated successfully, but these errors were encountered: