Last modified by Leon Poon on 2021/03/23 13:15

Show last authors
1 After you have [[created a virtualenv>>doc:Computing Newbies.Python Newbies.How to Create a VirtualEnv.WebHome]], the virtualenv doesn't contain any libraries apart from the basic python ones.
2
3 To install a library named X, [[change working directory>>doc:Computing Newbies.How to Deal with Working Directory in Console.WebHome]] to your virualenv and type:
4
5 {{code language="plain"}}
6 bin/pip install X
7 {{/code}}
8
9 If you are on windows, type this instead:
10
11 {{code language="plain"}}
12 scripts\pip.exe install X
13 {{/code}}