软件使用及报错

配置zotero

https://blog.csdn.net/qq_40918859/article/details/124380201

pycharm破解版
https://www.cnblogs.com/marvin-wen/p/14397932.html

pycharm鼠标悬停到函数上显示参数       jianshu.com/p/d29e23f62db5


IDEA破解
https://www.likecs.com/show-803650.html

 

安装typora 

https://blog.csdn.net/xl928626652/article/details/116274970

 

QT

https://blog.csdn.net/weixin_46098577/article/details/122092822?ops_request_misc=&request_id=&biz_id=102&utm_term=qt5.14%E5%AE%89%E8%A3%85&utm_medium=distribute.pc_search_result.none-task-blog-2~all~sobaiduweb~default-0-122092822.142^v59^js_top,201^v3^control_1&spm=1018.2226.3001.4187

 

Navicat premium

http://www.itmind.net/13042.html

 

MySQL启动错误

https://blog.csdn.net/m0_67394360/article/details/124005293

 

pytorch 安装                    https://blog.csdn.net/love_respect/article/details/124681233?spm=1001.2101.3001.6650.1&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7ERate-1-124681233-blog-125662832.pc_relevant_3mothn_strategy_recovery&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7ERate-1-124681233-blog-125662832.pc_relevant_3mothn_strategy_recovery&utm_relevant_index=2

 cuda安装

https://blog.csdn.net/m0_45447650/article/details/123704930?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default-0-123704930-blog-82940528.pc_relevant_3mothn_strategy_and_data_recovery&spm=1001.2101.3001.4242.1&utm_relevant_index=3

 

anaconda创建虚拟环境并配置jupyter notebook

https://www.cnblogs.com/xxmmqg/p/12766319.html

 pytorch加载模型错误

https://blog.csdn.net/weixin_44966641/article/details/120083303

 

安装opencv要与python版本对应

pip install opencv-python==3.4.4.19 -i https://mirror.baidu.com/pypi/simple
pip install opencv-contrib-python==3.4.4.19 -i https://mirror.baidu.com/pypi/simple

批量安装
import os  # 导入os库

libs = {"xlwt", "panda"} # 将需要安装的库名称放到列表中

for lib in libs:
os.system("pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple " + lib)



posted @ 2022-05-19 11:48  仲德  阅读(81)  评论(0)    收藏  举报