airavata-courses / SquirtleSquad

A squad as cool as the real Squirtle Squad!. Somehow obsessed with designing a weather prediction app to save the world from global warming!!
1 stars 2 forks source link

Suggestion: Use venv and pip for installing library dependencies #28

Open ghost opened 4 years ago

ghost commented 4 years ago

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.

  1. python3 -m venv venv
  2. source venv/bin/activate
  3. Create a requirements.txt file and add all your dependencies in it.
anuragkumar95 commented 4 years ago

This would be addressed in later version when we wud use containers for each microservice.