开发程序的时候,总是希望有一个相对干净的环境来开发和执行程序。一方面可以非常清晰的看到第三方工具的依赖性,另外一方面,为了将来部署的准确性。
这里为了开发cython程序,在debian12上使用了python的虚环境,删除和创建比较简单。
pip的源使用清华源。
su -c 'apt-get install python3-pip'
su -c 'apt-get install python3-venv'
su -c 'apt-get install libxcb-cursor0'python3 -m pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simplepython3 -m venv /home/work/venvsource /home/work/venv/hin/activatepython3 -m pip install pyside6