Virtual Environment

Managing Python Virtual Environments with Conda/Anaconda, poetry, pyenv, pipenv etc.

2023-01-30. Category & Tags: Conda, Virtual Environment, Pyton

See also the main blog: /learn-python which contains the latest virtual env. manager. 【 USE UV ! 】PYENV # Suggested: use uv venv. installing pyenv fr. source # WARN: Before installing any specific py version: sudo apt install -y python3-pip curl git python3-dev libbz2-dev libssl-dev libsqlite3-dev libreadline-dev lib32readline-dev libffi-dev build-essential zlib1g-dev. (see the common error below for the reason) Run curl [ref]: (manually do it if lacking curl) Note: every user needs to run individually: ...

Python the Language (in case of)

2016-08-21. Category & Tags: Python, Environment, Virtual Environment, UV, Py, Py3, Lang, Language

Related: /jupyter /Learn-Django /python-gui: desktop GUI/frontend /py-cookbook : code reuse /pyvis: plot in py Python in Win by MS official tutorial CN 用 Rust 让 numpy、scikit 和 pandas 加速 100 倍!开源 Weld 技术揭秘 学 Python ,开头几件事: 熟悉基础语法 + 使用虚拟环境。 之后,考虑:1. 基于 uv 使用 AI-IDE; 2. Linux。 Basic Py Grammar 基础语法 # 基础教程: 菜鸟教程 runoob.com (提示:此网页中的“高级教程”是指基础教程的高级部分), 如果不是专业软件开发人员,只是做科研实验,可以先学基础的基础,即学到“编程第一步”,“编程第一步”之后的内容用 1 小时过一遍备查即可。 重要:对于基础的基础示例代码,一定要跟着一个字母一个字母敲(做到自己完全能写出来一段,熟悉这些基础函数的调用方法和常用参数),绝对不要直接复制粘贴。 以下是虚拟环境管理器(UV)和基于虚拟环境管理器安装其他版本的 Py # PRE-INSTALL: UV, CONDA VS. PIP # Pip requires apt. ...