Daksh
Daksh

Reputation: 1154

Error while trying to run Pharo for the first time

I am trying to run Pharo on my system (Ubuntu 17.10 64bit).I followed the exact procedure as given in the book Pharo By Example.

I Went into the Pharo6.1-64 directory and ran the following command in the terminal

./pharo shared/pharo6.1-64.image

I expected this to open the Pharo window where I can write code but instead saw this error in the Terminal.

./pharo: line32: /home/user/pharo6.1-64/vm/pharo: No such file or directory.

Do I need to download any additional files ? I downloaded the zip from here and it said just extract and run.

Upvotes: 1

Views: 990

Answers (2)

Daksh
Daksh

Reputation: 1154

Copy the pharo.image and pharo.changes to the directory containing the pharo executable and from terminal run the command

Pharo_executable path_to_Pharo_image

Upvotes: 1

Sean DeNigris
Sean DeNigris

Reputation: 6390

It looks like there is something wrong with the file you downloaded. It does not seem to contain a vm. For now, try the other method mentioned in the book:

wget -O- get.pharo.org/50+vm | bash

Upvotes: 2

Related Questions