
python
jsboy123
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://conda.anaconda.org/pytorch
pytorch和torchvision下载失败,主要是anaconda延迟过高导致 增加国内镜像源来安装 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ conda config --add channels ht原创 2022-02-19 13:32:47 · 2723 阅读 · 0 评论 -
python opencv
python 安装opencv python -m pip install opencv-python -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com原创 2021-09-15 16:32:50 · 79 阅读 · 0 评论 -
python怎么生成EXE(python3以上版本)
1.下载py2exe 2.C:\Python34\Scripts>pip install py2exe 3.写一个python setup文本 __author__ = 'DLSYAIM' from distutils.core import setup import py2exe setup(console=['test.py']) 4.在命令行下: D:\PycharmProj原创 2015-12-18 14:41:29 · 917 阅读 · 0 评论 -
Python搭建股票交易开发包
pip install pandas pip install pandas_datareader pip install tushare pip install matplotlib pip install beautifulsoup4 pip install sklearn pip install tensorflow-gpu pip install keras原创 2019-03-31 15:23:15 · 798 阅读 · 0 评论