个人工具

“UbuntuHelp:wxMaxima/zh”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
Introduction
Download, Configure, Make, and Install it
第15行: 第15行:
 
# 因特网浏览器
 
# 因特网浏览器
  
== Download, Configure, Make, and Install it ==
+
== 下载,编译和安装 ==
So first this variable: "latest-version" is the latest version of wxMaxima (as of 3-20-007 it is 0.7.1-1)
+
首先用变量"latest-version"指代xwMaxima的最新版本(截止3-20-2007,它是0.7.1-1)
  
'''In a web browser'''
+
'''在网络浏览器中'''
  
download the package wxmaxima-"latest-version".tar.gz by going to here, http://sourceforge.net/project/showfiles.php?group_id=126731
+
在这儿http://sourceforge.net/project/showfiles.php?group_id=126731 点击wxmaxima-"latest-version".tar.gz来下载软件包wxmaxima-"latest-version".tar.gz
and clicking on wxmaxima-"latest-version".tar.gz
+
  
'''In a terminal'''
+
'''在终端中'''
  
First out with the old,
+
删除老版本,
  
 
<pre><nowiki>
 
<pre><nowiki>
第31行: 第30行:
 
</nowiki></pre>
 
</nowiki></pre>
  
You will need the virtual package "build-essential" for making the package and the package "checkinstall" for building a debian package.  So if you don't have it or are unsure,
+
你需要虚拟软件包"build-essential"来编译源码包并需要软件包"checkinstall"来建立一个debain包。因此,如果你没有或者不确定的话,
  
 
<pre><nowiki>
 
<pre><nowiki>
第37行: 第36行:
 
</nowiki></pre>
 
</nowiki></pre>
  
Now its time to extract, configure, make and install your package:
+
现在是解压,编译和安装你的软件包的时候了:
  
 
<pre><nowiki>tar xfvz /"locationof"/wxMaxima-"latest-version".tar.gz
 
<pre><nowiki>tar xfvz /"locationof"/wxMaxima-"latest-version".tar.gz
第45行: 第44行:
 
make
 
make
 
sudo checkinstall</nowiki></pre>
 
sudo checkinstall</nowiki></pre>
say "yes" to create a document package and paste the description of Maxima off of the website pasted bellow:
+
选择"yes"来创建一个文档包并把来自网站的下面一段wxmaxima的描述粘贴上
  
 
''wxMaxima is a cross platform GUI for the computer algebra system maxima based on wxWidgets.''
 
''wxMaxima is a cross platform GUI for the computer algebra system maxima based on wxWidgets.''
  
When this is done type "0" then "ENTER" and enter your email address so that people know who you are if they use your package you@somewhere as an example
+
等上面结束时输入"0" 然後点击"回车" 并输入你的email地址,这样使用你的软件包的人能知道你是谁。比如输入you@somewhere并"回车"。Checkinstall会尽力为你去构建一个deb软件包,默认情况下它会自动安装并包含在你编译 Maxima的目录中,也就是说,这个deb在/"locationof"/wxmaxima-"latest-version"/中。这样如果一切顺利的话,现在你已经装好最新版的wxmaxima了。
  
hit "ENTER" and hope for the best. Checkinstall attempts to build you a deb package which it automatically installs by default and is also included in the directory you made WxMaxima, i.e. the deb is in /"locationof"/WxMaxima-"latest-version"/.  Thus if everything goes smoothly you now have the latest version of wxmaxima installed.
+
如果你遇到困难,我的email是yigal.weinstein@gmail.com
  
If you get stuck my email address is [email protected]
+
这儿有我的一个deb,但是当我在Feisty Herd-5中编译它时有警告。
 
+
Here is my deb but be warned I am using Feisty Herd-5 when I compiled this.
+
 
https://help.ubuntu.com/community/wxMaxima?action=AttachFile&do=get&target=wxmaxima_0.7.1-1_i386.deb
 
https://help.ubuntu.com/community/wxMaxima?action=AttachFile&do=get&target=wxmaxima_0.7.1-1_i386.deb
  
Here's another deb for Dapper (compiled 28-04-2007), works fine on my PC:
+
这是我的另一个deb包(编译于 28-04-2007),在我的PC上工作很好:
 
https://help.ubuntu.com/community/wxMaxima?action=AttachFile&do=get&target=wxmaxima_0.7.1-1_i386_dapper.deb
 
https://help.ubuntu.com/community/wxMaxima?action=AttachFile&do=get&target=wxmaxima_0.7.1-1_i386_dapper.deb
 
----
 
----

2007年5月25日 (五) 09:54的版本


简介

这是一个为所有Ubuntu爱好者准备的安装最新版wxMaxima 的指南。

http://wxmaxima.sourceforge.net/wiki/index.php/Main_Page . wxMaxima是一个基于wxWidgets的跨平台的计算机代数系统maxima的图形前端。

必要条件:

  1. 网络连接 (或者 ubuntu DVD + 最新版 Maxima)
  2. 具有打开和使用终端的基本知识
  3. 因特网浏览器

下载,编译和安装

首先用变量"latest-version"指代xwMaxima的最新版本(截止3-20-2007,它是0.7.1-1)

在网络浏览器中

在这儿http://sourceforge.net/project/showfiles.php?group_id=126731 点击wxmaxima-"latest-version".tar.gz来下载软件包wxmaxima-"latest-version".tar.gz

在终端中

删除老版本,

sudo apt-get remove maxima-doc wxmaxima 

你需要虚拟软件包"build-essential"来编译源码包并需要软件包"checkinstall"来建立一个debain包。因此,如果你没有或者不确定的话,

sudo apt-get install build-essential checkinstall

现在是解压,编译和安装你的软件包的时候了:

tar xfvz /"locationof"/wxMaxima-"latest-version".tar.gz
sudo apt-get build-dep wxmaxima
cd /"locationof"/wxMaxima-"latest-version"/
./configure --enable-dnd --enable-printing --enable-unicode-glyphs --prefix=/usr --exec-prefix=/usr
make
sudo checkinstall

选择"yes"来创建一个文档包并把来自网站的下面一段wxmaxima的描述粘贴上

wxMaxima is a cross platform GUI for the computer algebra system maxima based on wxWidgets.

等上面结束时输入"0" 然後点击"回车" 并输入你的email地址,这样使用你的软件包的人能知道你是谁。比如输入you@somewhere并"回车"。Checkinstall会尽力为你去构建一个deb软件包,默认情况下它会自动安装并包含在你编译 Maxima的目录中,也就是说,这个deb在/"locationof"/wxmaxima-"latest-version"/中。这样如果一切顺利的话,现在你已经装好最新版的wxmaxima了。

如果你遇到困难,我的email是[email protected]

这儿有我的一个deb,但是当我在Feisty Herd-5中编译它时有警告。 https://help.ubuntu.com/community/wxMaxima?action=AttachFile&do=get&target=wxmaxima_0.7.1-1_i386.deb

这是我的另一个deb包(编译于 28-04-2007),在我的PC上工作很好: https://help.ubuntu.com/community/wxMaxima?action=AttachFile&do=get&target=wxmaxima_0.7.1-1_i386_dapper.deb