Skip to content

mingyuchoo/python-study-series

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

license Issues GitHub pull requests

python-study-series

Package Managers

UV

Install UV

curl -LsSf https://astral.sh/uv/install.sh | sh
# or
#cargo install --git https://github.com/astral-sh/uv uv

Install Python globally

# install python
uv python install 3.11 3.12 3.13

# make .venv 
uv venv --python 3.13
uv python pin 3.13

# install packages
uv pip install {package_name}
uv pip install behave
uv pip install coverage
uv pip install mypy
uv pip install notebook
uv pip install pylint
uv pip install pyright
uv pip install python-lsp-server
uv pip install jupyterlab
uv pip install numpy
uv pip install pandas
uv pip install streamlit

Install Python locally

# make a project
mkdir {project_name}
cd {project_name}
uv init {project_name} --python 3.13

# make .venv
uv sync

# install packages
uv add {package_name}
uv add --dev {package_name_for_develop}
uv remove {package_name}

# build and run
uv build
uv run {script_name}.py

Install packages again

uv pip install .
# or
uv add -r requirements.txt

Jupyter Lab

How to install Jupyter Lab

cd
uv python install 3.13
uv venv --python 3.13
uv pip install jupyterlab

How to run Jupyter Lab

jupyter lab 

References

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •