user3325913
user3325913

Reputation: 21

Trying to install Theos

I'm trying to install Theos on my iMac using the instructions from HERE.

It seems to have installed correctly, but when I try to set up a new project in terminal using: $THEOS/bin/nic.pl

It says: -bash: /bin/nic.pl: No such file or directory

Any help would be great!

Upvotes: 0

Views: 1492

Answers (2)

perascotta
perascotta

Reputation: 133

If you followed the guide of iphonedevwiki you should have all that you need to use theos. The correct way to call nic.pl should be:

sudo su

/opt/theos/bin/nic.pl

Upvotes: 0

iMokhles
iMokhles

Reputation: 219

You should unhide your OSX hidden files using this command through TERMINAL :

defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder

Then open .bash_profile under your USERNAME folder

[edit] if .bash_profile doesn't existe Open TERMINAL then write

touch .bash_profile

Then

open -a TextEdit.app .bash_profile

Then add this line inside

export THEOS=/opt/theos

Good luck

Upvotes: 1

Related Questions