【置顶】深度学习中踩过的坑


安装看显卡驱动版本: nvidia-smi 然后到pytorch官网上找相应的命令

一种灵活和可移植的安装包的方法,允许指定要使用的Python解释器,即使在系统上安装了多个版本的Python。如果希望将包安装到特定的Python环境中,或者希望使用不同于系统默认Python版本,则这可能非常有用。 python.exe -s -m pip install 包名

Read more

【置顶】jupyter lab 使用


1、 安装 jupyterlab,代码补全,中文等

pip install jupyterlab
//或者
conda install -c conda-forge jupyterlab

pip install jupyter-lsp
pip install jupyterlab-lsp
pip install python-lsp-server
pip install jupyterla...

Read more