-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added another step on contributing.md to avoid pip install issue (#571)
- Loading branch information
1 parent
7708f70
commit 730ba29
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,15 +52,20 @@ git remote add upstream [email protected]:pygreece/python-docs-gr.git | |
git remote set-url --push upstream [email protected]:<your-username>/cpython.git | ||
``` | ||
|
||
6. [Προαιρετικό βήμα] Δημιουργείστε ένα virtual environment και κάντε activate: | ||
6. Τέλος κατεβάστε το περιεχόμενο του cpython submodule πληκτρολογώντας: | ||
```bash | ||
git submodule update --init | ||
``` | ||
|
||
7. [Προαιρετικό βήμα] Δημιουργείστε ένα virtual environment και κάντε activate: | ||
|
||
```bash | ||
python -m venv env | ||
source env/bin/activate # macOS or Linux | ||
env\Scripts\activate.bat # Windows | ||
``` | ||
|
||
7. [Προαιρετικό βήμα] Εγκαταστείστε τα requirements: | ||
8. [Προαιρετικό βήμα] Εγκαταστήστε τα requirements: | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
|