a post with code

Jupyter Kernel spec

Register environment as a jupyter kernel

mamba install jupyterlab ipykernel

python -m ipykernel install –user –name=ENV_NAME

Remove jupyter kernel

jupyter kernelspec remove ENV_NAME

Pip env

To create a pip env navigate to project directory

py -m venv env

activate

.\my_env_name\Scripts\activate

install standard packages using basic_requirments.txt

pip install -r /path/to/requirements.txt

Git

Initialise Git remote from local repo

Make it a Git repo, creating main branch

git init -b main

Add and commit files

git add .

git commit -m”initial commit”

Create remote on Github.com

Create new project with same name as local repo on GitHub.com Create without README.md and .gitignore files

Add remote origin

git remote add origin https://github.com/USER/PROJECT.git

Verify with

git remote -v

Push files

git push origin main

Log-in to Git on server/ new laptop etc.

Install Git on device

Create acess token on github.com under Settings > Developper Settings > Personal Access Tokens > Tokens (classic). Use copy the token and save in a password manager.

Then clone project through https on the new machine.

git clone https://github.com/USER/PROJECT.git

Git will prompt you to input you USERNAME and the TOKEN as password. Once the project is cloned the token can be saved in Git. This allows you to access Git without having to input the token every time.

git config –global credential.helper store

After having executed this command Git will require Username and token one more time, but it will save it for future use.




Enjoy Reading This Article?

Here are some more articles you might like to read next:

  • a test