mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
virtualenv --no-site-packages
Now, that all packages are installable using setuptools, `--system-site-packages` is no longer necessary, and it's better to use saner `--no-site-packages`.
This commit is contained in:
parent
731727cb38
commit
d2ef9ea552
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ Apache, though we will be expanding it to other platforms.
|
|||
```
|
||||
sudo apt-get install python python-setuptools python-virtualenv \
|
||||
python-dev gcc swig dialog libssl-dev
|
||||
virtualenv --system-site-packages venv
|
||||
virtualenv --no-site-packages venv
|
||||
./venv/bin/python setup.py install
|
||||
sudo ./venv/bin/letsencrypt
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in a new issue