packages needed for project are listed in packages.txt
(REMINDER) => add any usefull information to README
RUN BEFORE YOU START WORKING
./setup.shto see all python packages and versions run:
pip listto clear cache to ensure 'from scratch' package installation run:
pip cache purgeand then:
pip install <package_name>==<desired_version>GIT SECTION
how to properly push changes to repo:
- stash your local changes and pull remote changes:
git stash
git fetch
git pull
git stash pop- then commit and push to remote (you can avoid this below set of commands by using integrated commit and push feature of DataSpell):
git add .
git commit -m "your message"
git pushTROUBLESHOOTING SECTION
if you make a mistake and commit and push before fetching and pulling there is a easy way to fix it:
git reset HEAD~and then repeat git pushing set of commands from section above