링크 ux 에서 python 작업 환경 설정

2340 단어 python
1 설치 ubuntu 10.10
2 소프트웨어 센터 검색 gnome 검색 결과 에 gnome shell 설치
3. 사용자 로그 인 을 취소 하고 로그 인 화면 으로 돌아 갑 니 다. 기어 에서 gnome classic 을 선택 하여 고전 인터페이스 로 전환 합 니 다.
4 oracle - java 설치
Oracle's Java 6 and 7.
Ubuntu 11.10 does not offer Oracle's Java because OpenJDK can now replace it.
However you can install Oracle's Java 6.2 from this PPA (Private Package Archive). Please see ppa:ferramroberto/java... sudo add-apt-repository ppa:ferramroberto/java sudo apt-get update sudo apt-cache search sun-java6 sudo apt-get install --reinstall sun-java6-jre sun-java6-plugin sun-java6-fonts Then set java-6-sun as default. Choose java-6-sun/jre/from the list. This step is important: sudo update-alternatives --config java This command does it directly without asking: sudo update-alternatives --set java/usr/lib/jvm/java-6-sun/jre/bin/java
5. aptana 를 홈 디 렉 터 리 로 복사 하여 압축 을 풀 고 (직접 사용 하면 설치 할 필요 가 없습니다)
SVN sudo apt - get install subversion 설치
7 SVN 에서 프로젝트 코드 가 져 오기
$ cd ~
$ mkdir workspace
$ cd workspace
$ svn co http://...
8. aptana 를 열 고 항목 가 져 오기
9 webpy 다운로드 (http://webpy.org)
  python setup.py install
아파 치 2
  sudo apt-get install apache2
 11 apache 와 webpy 설정
  sudo apt-get install libapache2-mod-wsgi
수정/etc/apache 2/sites - enabled/000 - default
<VirtualHost *:80>

WSGIScriptAlias / /home/shujunli/workspace/hp2/code.py/
AddType text/html .py
Alias /static /home/shujunli/workspace/hp2/static/
Alias /html /home/shujunli/workspace/hp2/html/
Alias /css /home/shujunli/workspace/hp2/css/
Alias /js /home/shujunli/workspace/hp2/js/
Alias /images /home/shujunli/workspace/hp2/images/

ErrorLog /tmp/error.log
LogLevel warn
CustomLog /tmp/access.log combined
</VirtualHost>

12 MySqlDb 설치
sudo apt-get install python-mysqldb
13 mysql 설치
sudo apt-get install mysql-server

좋은 웹페이지 즐겨찾기