Просмотр исходного кода

Merge pull request #3429 from Calinou/readme-virtualenv-requirements

Install dependencies from `requirements.txt` when using virtualenv
Max Hilbrunner 5 лет назад
Родитель
Сommit
13d49ccf97
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      README.md

+ 1 - 2
README.md

@@ -109,8 +109,7 @@ Execute this from the root folder of this repository:
 ```sh
 virtualenv --system-site-packages env/
 . env/bin/activate
-pip3 install sphinx
-pip3 install sphinx_rtd_theme
+pip install -r requirements.txt
 ```
 
 Then do `make html` like above.