I'm trying to install an addon called Panorama-Tracker, here's the link to it: https://github.com/dfelinto/Panorama-Tracker
The author mentioned that commands should be pasted in a terminal before installing the addon, I copied the commands, run Text Editor in Blender, pasted the commands and hit Run Script, I got an error of check Console, checking the console I saw nothing. I'm sure I'm doing it the wrong way, is there a possibility someone can show me how to do it right?
Asked
Active
Viewed 1,364 times
1
Georges D
- 4,962
- 6
- 40
- 70
-
That is the text editor (lhs of image). You want to open a terminal of your operating system . Which OS are you on? This is the console to check for errors too, ie the system console http://blender.stackexchange.com/questions/6173/where-does-console-output-go/6174#6174 not the python console (on rhs of image) – batFINGER Jun 04 '16 at 16:34
-
no need to use git to clone the repo , You can simply download those 6 .py files with your browser , zip them and install that zip as an addon. – Jun 04 '16 at 16:40
-
I'm using Windows 7, I just tried Window > toggle system console, I have the command prompt open, then what, I'm sorry but my level in programming and coding is 1/100 – Georges D Jun 04 '16 at 16:42
-
I just tried that, I'm getting (failed to get addon path) error. @root – Georges D Jun 04 '16 at 16:48
-
1@Georges , I tried and it works for me, i downloaded the files in a folder , and zipped the folder , not the files. like this – Jun 04 '16 at 16:57
-
Thank you so much, it works finally, please put this as an answer, I don't know why the author made it to be so complicated when it can be very simple. @root – Georges D Jun 04 '16 at 17:10
1 Answers
3
Blender expects addons to be a zipped directory of python scripts.
if somehow installing an addon gives the error failed to get addon path , investigate the addon and make sure it has the following structure.
addon.zip
|
|--directory_name/
|
|--__init__.py
|--script.py
|--script2.py
|--etc...
