zoukankan      html  css  js  c++  java
  • Linux安装python

    1.打开终端,输入:wget https://www.python.org/ftp/python/3.5.0/Python-3.5.0b4.tgz下载完毕后 
    2.输入解压命令:tar –zxvf Python-3.5.0b4.tgz;
    3.切换到解压的目录:cd Python*
    4.接下来就是安装:./configure;
    5.make;
    6.sudo make install
    7.然后查看一下就知道了:输入python如果出现下面的提示:Python 3.5.0 (#1, Aug 06 2015, 14:04:52)[GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on l
    nux2;Type “help”, “copyright”, “credits” or “license” for more information.
    就说明成功了,
    详细可以参考:http://blog.csdn.net/ubuntucc/article/details/9257731


    安装pycharm
    参考地址:http://www.cnblogs.com/zhcncn/p/4027025.html

    1) Copy the pycharm-*.tar.gz to the desired installation location (make sure you have rw permissions for that directory)

    $ cd Downloads/

    (2)Unpack the pycharm-*.tar.gz using the following command: tar xfz pycharm-*.tar.gz

    $ tar xfz pycharm-*.tar.gz

    (3)Remove the pycharm-*.tar.gz to save disk space (optional)

    $ rm  pycharm-*.tar.gz

    (4)Run pycharm.sh from the bin subdirectory

    $ cd pycharm-community-3.4.1/bin/

    $ ./pycharm.sh

  • 相关阅读:
    08-JS中table隔行换色
    07-JS中 li 排序
    HTML DOM 事件
    JavaScript 事件
    jQuery事件函数
    JQuery与JS对象相互转换
    jQuery中的选择器
    jQuery实现放大镜特效
    java线程(2016-4-7)
    Java 线程的转换及状态
  • 原文地址:https://www.cnblogs.com/fireporsche/p/6826309.html
Copyright © 2011-2022 走看看