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
For running python projects, I think it will be a better idea to use a python virtual env and use pip -r requirements.txt to install python packages so that the users don't have to install on their laptops unnecessarily.
python3 -m venv venv
source venv/bin/activate
Create a requirements.txt file and add all your dependencies in it.
The text was updated successfully, but these errors were encountered:
For running python projects, I think it will be a better idea to use a python virtual env and use
pip -r requirements.txt
to install python packages so that the users don't have to install on their laptops unnecessarily.python3 -m venv venv
source venv/bin/activate
The text was updated successfully, but these errors were encountered: