~drgeo-developers/drgeo/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Instructions to install Dr. Geo in a Cuis-Smalltalk developer environment.

# 1. Set up your Cuis-Smalltalk dev environment

mkdir Cuis
cd Cuis
# Install Cuis image and packages
git clone --depth 1 https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-Dev.git
git clone --depth 1 https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-UI.git
git clone --depth 1 https://github.com/Cuis-Smalltalk/Erudite.git
git clone --depth 1 https://github.com/Cuis-Smalltalk/Numerics.git

cd Cuis-Smalltalk-Dev
./clonePackageRepos.sh
./pullAllRepos.sh


# 2. Install Virtual Machine

wget -O cogspur.tgz https://github.com/OpenSmalltalk/opensmalltalk-vm/releases/latest/download/squeak.cog.spur_linux64x64.tar.gz
tar -zxvf cogspur.tgz
mv ./sqcogspur64linuxht ./cogspur

# 3. Fetch the Dr. Geo repository, with source and script

cd Cuis/Cuis-Smalltalk-Dev
bzr branch lp:drgeo

# 4. Start the Dr. Geo IDE

./drgeo/startIDE.sh

# A new image drgeoIDE.image is built. In the image execute
"DrGeoSystem beDevelopment", execute "DrGeo new" to start Dr. Geo

Have an interesting exploration!