logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

ubuntu 优先无线上网

想必大家使用Ubuntu或其他版本Linux系统上网的时候,常常遇到这样一种情况,如果电脑同时连着有线网络跟无线(Wifi)网络,系统会默认(优先)使用有线网络,即使用有线网络的网关作为默认路由。这种情况下,如果无线(Wifi)能上外网,而有线却只能上内网,则系统因为默认走有线路由而无法上外网,唯一便捷的解决办法便是断开有线。然而在某些情况下,我们既需要连接无法上外网的有线(如与有线局域网内的他人

linux快速清除文件内容

  $ : > filename #其中的 : 是一个占位符, 不产生任何输出.  $ > filename  $ echo “” > filename  $ echo /dev/null > filename  $ echo > filename  $ cat /dev/null > filename$ cp /

Missing dependencies for SOCKS support.

pip install时报错InvalidSchema: Missing dependencies for SOCKS support.的解决方法首先用conda命令安装pysocks:conda install -c anaconda pysocks=1.6.6再运行pip install requests[socks]查看all_proxyset | grep -i a...

pip install报错:Missing dependencies for SOCKS support解决方法

系统: Ubuntu 16.04pip: 10.0.0报错信息在使用pip install -r requirements.txt命令时,报错:InvalidSchema: Missing dependencies for SOCKS support.解决方法依次输入下面命令:Unset socks proxyunset all_proxyunset ALL_PROXYInst...

#pip
The remote end hung up unexpectedly while git cloning

ProblemMy git client repeatedly fails with the following error after trying to clone the repository for some time.What could be the issue here?Note: I have registered my SSH key with the GIT hostin...

#git
利用 SSH 完成 Git 与 GitHub 的绑定

生成SSH keyssh-keygen -t rsa路径默认posswordcome again password~/.ssh下私钥id_rsa和公钥id_rsa.pub把公钥id_rsa.pub的内容添加到 GitHub,这样我们本地的密钥id_rsa和 GitHub 上的公钥id_rsa.pub才可以进行匹配,授权成功后,就可以向 GitHub 提交代码啦!添加 SSH ...

#ssh#git#github
zsh

chsh -s /bin/bashsh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"# set item2/perferance/profile/general/command//user/local/bin/zsh# 或者chsh -s /bin/zs...

#bash
Vim中如何全选复制粘贴

Vim中如何全选并复制?(区分大小写!!!)全部删除:按esc键后,先按gg(到达顶部),然后dG全部复制:按esc键后,先按gg,然后ggyG全选高亮显示:按esc键后,先按gg,然后ggvG或者ggVG单行复制:按esc键后, 然后yy单行删除:按esc键后, 然后dd粘贴:按esc键后, 然后p复制到粘贴板: 全选高亮显示之后,ctrl+shift+c,vim只能粘贴50行...

#vim
ubuntu install ipython

update-alternatives --install /usr/bin/python python /usr/bin/python3 10update-alternatives --install /usr/bin/python python /usr/bin/python3 10(This gives a priority of 10 for the path of python3....

#ipython
机器学习基础概念(一)

什么是机器学习工程师: 我们是给计算机设计一套解决具体问题的流程, 如做一个淘宝网机器学习: 机器学习呢? 机器学习是你不去设计, 而让计算机自己去磨,如同用一套很一般的模子里打磨出能够解决特定问题的武器。 这点上,机器学习做的正是” 自发能够产生解决问题的程序的程序” , 一些机器学习的经典算法如线性回归, SVM, 神经网络, 它们单个都不能解决问题, 但是通过“学习”却可以一会去预测房价..

    共 14 条
  • 1
  • 2
  • 请选择