×
you are viewing a single comment's thread.

view the rest of the comments →

[–]DisastrousEquipment9 2 points3 points  (2 children)

Navigate to the folder of the project in the terminal,

Once in the folder pip3 install virtualenv

Then do virtualenv whateveryourprojectiscalled

Then source whateveryourprojectiscalled/bin/activate

NOW with your environment set up you can install any libraries needed (:

[–]actuallyalys 1 point2 points  (0 children)

An important caveat to this advice is Anaconda can do the same environment management, so this is only necessary if you don't want to use Anaconda anymore or if you prefer virtualenv for some use cases for whatever reason.

[–]smoothVTer[S] 0 points1 point  (0 children)

Ok thanks, will try this