- 博客(53)
- 收藏
- 关注
转载 搜狗输入法
使用ubuntu 18.10作为案例 安装fcitx输入法框架: sudo apt install fcitx-table-wbpy fcitx-config-gtk 下载搜狗安装包:https://pinyin.sogou.com/linux/?r=pinyin 安装搜狗输入法: s...
2019-09-12 22:10:57 322
转载 桌面美化
工具安装 sudo apt-get updatesudo apt-get install gnome-tweak-toolsudo apt-get install gnome-shell-extensionssudo apt-get install gnome-shell-e...
2019-07-10 17:19:00 355
转载 使用清华镜像下载pytorch,快速离线安装
使用清华镜像下载pytorch,快速离线安装 在https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/文件夹下,选择linux-64。 然后找到pytorch,图中是一部分pytorch链接, 然后你就可以根据python版本...
2019-07-10 11:09:00 8756
转载 ubuntu中ananconda使用conda命令权限不足
sudo chmod -R 777 anaconda3 转载于:https://my.oschina.net/timebear/blog/3071998
2019-07-10 11:06:00 873
转载 Linux安装、启动和激活PyCharm2019专业版
下载 官方网站:https://www.jetbrains.com Tools -> PyCharm -> DownLoad -> Linux -> Professional [专业版] -> DOWNLOAD 安装 下载完成后 解压缩,得到一个文件夹pycha...
2019-07-10 09:11:00 2255
转载 Anaconda使用conda activate激活环境出错
报错 CommandNotFoundError: Your shell has not been properly configured to use ‘conda activate’. 激活环境 source activate 退出环境 source deactivate ...
2019-07-09 19:04:00 458
转载 Anaconda环境变量配置
Linux安装anaconda的步骤: 下载anaconda的安装包,后缀名为.sh,然后在root用户下执行bash XXX.sh Linux配置anaconda环境变量: 1、命令的路径在/usr/local/anaconda3/bin; 2、通过vim /etc/profi...
2019-07-09 16:32:00 613
转载 时间同步问题
让 Linux 使用本地时间 委屈以下 Linux 吧,Manjaro 或 Arch 可以在终端中输入: sudo timedatectl set-local-rtc true ...
2019-07-09 15:31:00 183
转载 深度截图工具
安装 直接在Ubuntu商店搜索“深度截图”,点击“安装”即可。 配置快捷键 打开“设置”,选择“设备”,再选择“键盘”,滑到最底部选择“添加+”。 转载于:htt...
2019-07-09 14:37:00 235
转载 网络试卷2
⑴边缘部分:就是连接在因特网上的所有的主机。边缘部分利用核心部分提供的服务,使众多主机之间能够互相通信并交换信息或共享信息; ⑵核心部分:网络中的核心部分由许多路由器实现互连,向网络边缘中的主机提供连通性,使边缘部分中的任何一个主机都能够向其他主机通信。 ...
2019-03-23 08:06:00 154
转载 复试面试问题
复试面试问题 一、英语问题 最喜欢的课程是什么? 介绍你的家乡 最喜欢的书 计算机的五个组成部分 数据库建立的过程 介绍家庭 自我介绍 你是如何知道江苏大学以及为何会选择江苏大学 自己的优点缺点,以及缺点怎么克服 二、数据库方面 数据库...
2019-03-22 19:13:00 1699
转载 英语问题回答
最喜欢的课程是什么? My favorite course is C language programming, this is my first course to take me into the programming world. 介绍你的家乡 最喜欢的书 My favorit...
2019-03-21 21:04:00 166
转载 英语自我介绍
Goodafternoon, dear professors. It’s a great honor for me to behere and introduce myself.My name is Xiongxiangshuo, come from Xuzhou, jian...
2019-03-21 20:14:00 168
转载 第一章 计算机网络体系结构
1.1.1计算机网络概述 概念、组成、功能、分类 1.1.2计算机网络概述 标准化工作及相关组织 1.1.3计算机网络概述 性能指标之 速率 带宽 吞吐量 ...
2019-03-04 20:41:00 77
转载 2009江苏大学885 编程题
#include <stdio.h>#include <math.h>int main(){ float sum = 0, count = 1.0; int i = 1; while(fabs(1.0/count) > 1e-6){ ...
2018-12-20 15:33:00 162
转载 饼状图作文
每个饼状图都分成每个部分占些百分比 首: The pie chart above clearly reveals the factors of consumer's concern on choosing restaurants in a certain city in 2017. Am...
2018-12-17 09:25:00 319
转载 表格图英二大作文
一个表格对一件事情有多个不同结果进行比较: 首: The table clearly reflects the statistics of staff's job satisfaction in a certain company. According to the data given...
2018-12-16 09:13:00 385
转载 两个柱表图
柱表图,A增长较快,B比较平稳,单位billion 首: From the information given in the column chart, we can see a striking contrast between A an B in sth from year1 to y...
2018-12-15 09:32:00 152
转载 2014江苏大学885 编程题
#include<stdio.h>int main(){ float Hermite(int n,float x); int n; float x; printf("请输入整数非负整数n和任意数x:\n"); scanf("%d %f",&n...
2018-12-13 16:43:00 130
转载 2016江苏大学885 编程题
#include <stdio.h>#include <stdlib.h>#include <iostream>#include <math.h>using namespace std;void fun(int s[]...
2018-12-13 14:59:00 242
转载 2015江苏大学885 编程题
#include <iostream>#include <stdio.h>#include <stdlib.h>using namespace std;int fun(int n){ if(n == 1 || n == 2){...
2018-12-12 17:24:00 162
转载 2017江苏大学885 编程题
#include <stdio.h>#include <stdlib.h>double fun(int n, float x){ if(n == 0) return 1; else if(n == 1) return x; else...
2018-12-11 21:05:00 230
转载 2018江苏大学885 编程题
#include <stdio.h>#include <stdlib.h>#include <math.h>#define N 11float fun(float a, float b, float c){ float t; t ...
2018-12-11 20:53:00 260
转载 C语言细节(不断扩充)
循环结构、顺序结构、选择结构是结构化程序设计的3中基本方式。 “关系运算”就是“比较运算”,将两个数值进行比较,判断其比较的结果是否符合给定的条件。 用关系运算符将两个数值或数值表达式连接起来的式子,称关系表达式。 逻辑运算符优先级 !(非)-> &&...
2018-12-10 16:30:00 244
转载 Java环境配置
Java开发环境搭建 搭建Java开发环境,第一步我们就需要安装JDK。大家可以在ORACLE官方网站上下载,下载路径: http://www.oracle.com/technetwork/java/javase/downloads/index.html 这里要提醒各位...
2018-12-03 15:10:00 116
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人