Managing Growing Projects Packages and Crates A crate is a binary or library. The crate root is a source file that the Rust Compiler starts from and m ...
一、说在前面 我在用pip下载包时经常有下载比较慢和如下错误的问题 Could not fetch URL https://pypi.tuna.tsinghua.edu.cn/simple/pipenv/ 二、解决方法 默认pip是使用Python官方的源,但是由于国外官方源经常被墙,导致不可用,我 ...
分类:
编程语言 时间:
2021-01-26 11:47:24
阅读次数:
0
1、找到svn 存放 用户名和密码的地方 默认位置: C:\Users\Administrator\AppData\Roaming\Subversion\auth\svn.simple 2、打开里面文件,发现只能查看到名字而密码加密 3、下载解密软件 http://www.leapbeyond.co ...
分类:
其他好文 时间:
2021-01-25 10:37:08
阅读次数:
0
在安装好python后,有时候会根据需要安装一些python包,默认的pip源地址下载速度往往比较慢,经常会报超时错误。比较好的解决办法是修改pip默认源为国内源。国内比较靠谱的源地址有: pypi 清华大学源:https://pypi.tuna.tsinghua.edu.cn/simple pyp ...
分类:
编程语言 时间:
2021-01-22 12:30:41
阅读次数:
0
USE [master] GO ALTER DATABASE AFMS SET RECOVERY SIMPLE WITH NO_WAIT GO ALTER DATABASE AFMS SET RECOVERY SIMPLE GO USE AFMS GO DBCC SHRINKFILE (N'AFMS ...
分类:
数据库 时间:
2021-01-20 11:52:19
阅读次数:
0
DynamoDB supports two types of primary keys: Partition key: A simple primary key, composed of one attribute known as the partition key. Attributes in ...
分类:
其他好文 时间:
2021-01-19 12:30:09
阅读次数:
0
def select_sort_simple(li): li_new = [] for i in range(len(li)): min_val = min(li) li_new.append(min_val) li.remove(min_val) return li_new def select_ ...
分类:
编程语言 时间:
2021-01-19 11:43:46
阅读次数:
0
python在升级到Python3之后,因为Utf-8作为没有歧义的统一标准编码,相信很少人再会碰到编码格式的问题,但现实总会不停地打脸理想,告诉我们Too Young Too Simple。先不扯闲篇,直入主题,介绍一下这篇博文主要的知识,后面再结合具体的软件工作情境来详细说明为什么会碰到此类问题 ...
分类:
编程语言 时间:
2021-01-15 12:16:28
阅读次数:
0
Pip修改源方法: 临时使用: 可以在使用pip的时候在后面加上-i参数,指定pip源 eg: pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple 永久修改: Linux: 修改 /root/.pip/pip.conf (没有 ...
分类:
其他好文 时间:
2021-01-15 11:42:48
阅读次数:
0
sudo apt-get update sudo apt-get install python3-dev # 装talib前要先装numpy python3.6 -m pip install numpy -i https://pypi.doubanio.com/simple wget http:// ...
分类:
系统相关 时间:
2021-01-14 10:54:36
阅读次数:
0