You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These are maybe some minor or obvios errors in the Documentation:
on http://mknx.github.io/smarthome/install
for installing python there is written:
$ sudo pip-3.2 install ephem
this does not work on my maschine. I have to use:
$ sudo pip3.2 install ephem
for installing the stable version there is written:
$ sudo tar --owner=smarthome xvzf path-to-tgz/smarthome-X.X.tgz
I have to use:
$ sudo tar --owner=smarthome -xvzf path-to-tgz/smarthome-X.X.tgz
The text was updated successfully, but these errors were encountered:
I think the tar command should be changed to support the standard way of specifying comand line arguments.
For the pip command I suggest to use just pip instead of pip3.2 or pip-3.2, since the distibution should provide this command as shortcut to the latest version of the binary.
These are maybe some minor or obvios errors in the Documentation:
on
http://mknx.github.io/smarthome/install
for installing python there is written:
$ sudo pip-3.2 install ephem
this does not work on my maschine. I have to use:
$ sudo pip3.2 install ephem
for installing the stable version there is written:
$ sudo tar --owner=smarthome xvzf path-to-tgz/smarthome-X.X.tgz
I have to use:
$ sudo tar --owner=smarthome -xvzf path-to-tgz/smarthome-X.X.tgz
The text was updated successfully, but these errors were encountered: