
计算机基础
拖延症真的有救
这个作者很懒,什么都没留下…
展开
-
anaconda快速安装pytorch+torchvision(不使用镜像源)
1. 创建虚拟环境pytorch打开anaconda prompt,输入conda create --name pytorch python=3.7 anaconda(最后加anaconda是为了在这个虚拟环境中把numpy, jupyter, pandas等一起安装了,所以耗时较长,也可以不加)2. 进入虚拟环境输入conda activate pytorch3. 安装py...原创 2020-02-25 22:02:17 · 4642 阅读 · 0 评论 -
整理C,python,matlab中基础分支循环结构(if,switch,for,while)格式
1.C语言http://c.biancheng.net/c/32/1.1 if语句#include <stdio.h>int main(){ char c; printf("Input a character:"); c=getchar(); if(c<32) printf("This is a control charac...原创 2019-04-24 18:03:02 · 514 阅读 · 0 评论