• Ubuntu下创建新用户后,不能使用管理员用户下安装的Anaconda

    时间:2024-04-02 16:25:56

    解决办法:将管理员用户下Anaconda的安装环境添加到新用户下的环境变量里,具体操作:系统切换到新用户下:vim .bashrc#添加Anaconda的环境变量source .bashrc#温馨提示:“./”:表示运行当前目录下的软件。

  • Google V8编程详解(一)V8的编译安装(Ubuntu)

    时间:2024-04-01 22:55:04

    V8的编译比较简单,需要同时安装git和svn.下载V8源码:git clone git://github.com/v8/v8.git v8 && cd v8切换到最新版本:git pull --rebase origin master安装依赖:make dependencies编译...

  • ubuntu18.04中安装和卸载cuDNN

    时间:2024-04-01 19:52:25

    udnn安装注意点: cudnn的安装其实很简单,关键点是一定要安装cuda对应的cudnn包,本机中安装的cuda7.5所以对应的cudnn为v5.1这很重要,我就是安装错了版本,导致后面caffe的编译总是出错。 cudnn安装步骤: 1、从官网上下载cudnn的安装包。 2、将安装包解压,将此...

  • 「LAMP」在ubuntu及其衍生版上 安装LAMP

    时间:2024-03-31 12:22:16

    在Ubuntu上安装LAMP此种方法在Linux Mint 13/14/15/16/17、Ubuntu 12.10(Quantal Quetzal)和Ubuntu 13.04 Raring Ringtail上屡试不爽。sudo apt-get install lamp-server^测试Apache...

  • Ubuntu中Android SDK Manager无法更新解决办法

    时间:2024-03-31 07:37:54

    Ubuntu中Android SDK Manager无法更新解决办法http://hi.baidu.com/petercao2008/item/d7a64441f04668e81e19bc1a

  • ubuntu12.04已安装SQLite3 而简单易用

    时间:2024-03-30 21:05:53

    今天想写一点app,使用数据库,所以在这里简要地记住它是安装和使用。1.安装SQLite3命令行下输入:sudo apt-get install sqlite32.安装SQLite3编译须要的工具包命令行下输入: sudo apt-get install libsqlite3-dev3.安装图形界面...

  • ubuntu中phpmyadmin密码忘记

    时间:2024-03-30 19:33:09

    在安装mysql时,默认只让你设置了root的密码,如果root的密码忘记,处理办法如下第一步:这时你需要进入/etc/mysql目录下,然后sudo vim/vi debian.cnf查看里面的用户名和密码,然后使用这个文件中的用户名和密码进入mysql,假如debian.cnf中的用户名为deb...

  • Ubuntu14.04配置Apache支持多个站点

    时间:2024-03-28 20:38:11

    怎样在一个Ubuntu的机器上(虚拟机)配置Apache支持多个网站呢?比如你有一台独立的Ubuntu虚拟机,配有一个外网的IP(45.46.47.48),并且注册了两个域名AAA.com和BBB.com,将这两个域名DNS解析到你虚机的IP地址。假设你已经安装好了Apache,一切都是默认的设置。...

  • 在一个Ubuntu系统上配置Apache支持多个站点

    时间:2024-03-28 20:35:38

    查看原文请访问:http://codewenda.com/ubuntu16-04%E9%85%8D%E7%BD%AEapache%E6%94%AF%E6%8C%81%E5%A4%9A%E4%B8%AA%E7%AB%99%E7%82%B9/怎样在一个Ubuntu的机器上(虚拟机)配置Apache支持多...

  • Ubuntu 14.04 AM335x TI-RTOS 编译

    时间:2024-03-28 13:22:17

    /************************************************************************************* * Ubuntu 14.04 AM335x TI-RTOS 编译 * 说明: ...

  • 论ubuntu的作死技巧

    时间:2024-03-27 20:09:48

    此处记录自己弄崩系统的几大杀器,长期更新。1. sudo apt-get autoremove

  • ubuntu 致命错误: zlib.h:没有那个文件或目录【转】

    时间:2024-03-27 16:00:38

    本文转载自:https://blog.csdn.net/u013359794/article/details/44922685?locationnum=15&fps=1编译时,出现错误,提示如下:此提示为缺少库文件,安装即可,ubuntu下安装方法:sudo apt-get install ...

  • Ubuntu常用软件包管理命令

    时间:2024-03-27 09:57:00

    1、查看软件包xxx安装内容#dpkg -L xxx 例子:#dpkg -L binutils    //查看安装binutils包会安装哪些文件2、列出系统已安装的或指定deb包的安装状态信息#dpkg -l [packagename]3、查找文件属于哪个包#dpkg -S filename例子:...

  • Setting up PhoneGap on Ubuntu for Android app development

    时间:2024-03-26 20:20:43

    This is just some notes I made, mostly taken from http://docs.phonegap.com/en/3.0.0/guide_overview_index.md.html.I was installing PhoneGap 3.0.0 on Ub...

  • Ubuntu12.04下使用valgrind内存测试工具测试Qt程序

    时间:2024-03-25 16:04:41

    1. 到官网http://valgrind.org/downloads/上下载valgrind最新版本;2. 解压源码,执行./configure;make;make install后,默认安装到/usr/local/bin下,执行:valgrind ls -l3. 提示:==== Memcheck...

  • install cinnamon on ubuntu 14.04

    时间:2024-03-24 22:34:42

    emotion:I feel not comfortable with ubuntu 14.04 default desktop unity,i still look for a alternative for unity.after trying other linux desktop,i fou...

  • How to Install PhantomJS on Ubuntu 16.04

    时间:2024-03-24 22:19:50

    IntroductionPhantomJS is a scripted, headless browser that can be used for automating web page interaction. PhantomJS is a free, open source and distr...

  • How To Install Cacti On Ubuntu 14

    时间:2024-03-24 21:29:17

    How To Install Cacti On Ubuntu 14.04/14.10by anismajCacti is an open source web based network monitoring tool front-end for the data logging tool call...

  • Install Docker on Ubuntu

    时间:2024-03-24 21:25:47

    Install Docker on UbuntuEstimated reading time: 17 minutesDocker is supported on these Ubuntu operating systems:Ubuntu Xenial 16.04 (LTS)Ubuntu Wily 1...

  • (转) How to install eclipse in ubuntu 12.04

    时间:2024-03-24 21:16:15

    源地址:http://www.krizna.com/ubuntu/install-eclipse-in-ubuntu-12-04/Eclipse installation in ubuntu 12.04 is very simple . you can install eclipse using “...