소스 검색

Amend developer install instructions.

* Use pip rather than setup.py
Stefano Cossu 7 년 전
부모
커밋
4ba31dcebf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/contributing.rst

+ 1 - 1
docs/contributing.rst

@@ -23,7 +23,7 @@ To set up the software for developing code, documentation, or tests::
     source bin/activate
     git clone https://github.com/scossu/lakesuperior.git app
     cd app
-    python setup.py develop
+    pip install -e .
 
 This will allow to alter the code without having to recompile it after changes.