Skip to content

File500/Data_science_and_analysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Data science and analysis

packages needed for project are listed in packages.txt

(REMINDER) => add any usefull information to README


RUN BEFORE YOU START WORKING

./setup.sh

to see all python packages and versions run:

pip list

to clear cache to ensure 'from scratch' package installation run:

pip cache purge

and then:

pip install <package_name>==<desired_version>

GIT SECTION

how to properly push changes to repo:

  1. stash your local changes and pull remote changes:
git stash
git fetch
git pull
git stash pop
  1. 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 push

TROUBLESHOOTING 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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors