Spaces:
Sleeping
Sleeping
Marcela Malaver
commited on
Commit
·
02abc5e
1
Parent(s):
c3fe88d
Add instructions for issues with git push
Browse files
README.md
CHANGED
@@ -19,5 +19,12 @@ source env/bin/activate # To activate the env
|
|
19 |
pip3 install streamlit # Only the first time
|
20 |
pip3 freeze > requirements.txt # To export the libraries to a file
|
21 |
streamlit run app.py # To run the app
|
22 |
-
|
23 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
pip3 install streamlit # Only the first time
|
20 |
pip3 freeze > requirements.txt # To export the libraries to a file
|
21 |
streamlit run app.py # To run the app
|
22 |
+
deactivate # To leave the env
|
23 |
```
|
24 |
+
|
25 |
+
If you have issues with git push:
|
26 |
+
```
|
27 |
+
git remote get-url origin # Copy this value and then change according the next line
|
28 |
+
git remote set-url origin https://<user_name>:<token>@huggingface.co/<repo_path> # ex. git remote set-url origin https://marcela9409:[email protected]/spaces/marcela9409/streamlit-first-demo
|
29 |
+
git push
|
30 |
+
```
|