參考官方教學
https://github.com/timgrossmann/InstaPy/blob/e6c0071a9b17d64a30958e51eefb7cd063ae2648/docs/How_to_Raspberry.md
很重要一點 chromedriver 記得一定要移入assets資料夾內
之後記得安裝其他套件
sudo pip install selenium
sudo pip install clarifai
sudo pip install emoji
之後輸入 即可執行
python quickstart.py
如果要使用 python 3 則
sudo pip3 install selenium
sudo pip3 install clarifai
sudo pip3 install emoji
sudo pip3 install pyvirtualdisplay
python3 quickstart.py
另外要使用 windows 快速存取 樹莓派裡面的檔案 可以安裝samba 套件
安裝
https://github.com/timgrossmann/InstaPy/blob/e6c0071a9b17d64a30958e51eefb7cd063ae2648/docs/How_to_Raspberry.md
很重要一點 chromedriver 記得一定要移入assets資料夾內
For Chrome
This assumes you're using the latest version of raspbian (stretch). Note that this works best running headless.
- Switch to the root user
sudo su
- Update apt source lists
echo "deb http://security.debian.org/debian-security stretch/updates main" >> /etc/apt/sources.list
- Update
apt-get update
- Install the browser
apt-get install chromium-browser
- Install the driver
apt-get install chromedriver
- Move the driver into the InstaPy/assets directory
mv /usr/bin/chromedriver /home/pi/Projects/InstaPy/assets/chromedriver
- nano instapy/settings.py
- change "chromedriver_min_version = 2.36" to "chromedriver_min_version = 2.33" & save file
之後記得安裝其他套件
sudo pip install selenium
sudo pip install clarifai
sudo pip install emoji
之後輸入 即可執行
python quickstart.py
如果要使用 python 3 則
sudo pip3 install selenium
sudo pip3 install clarifai
sudo pip3 install emoji
sudo pip3 install pyvirtualdisplay
python3 quickstart.py
另外要使用 windows 快速存取 樹莓派裡面的檔案 可以安裝samba 套件
安裝
samba
套件:sudo apt-get install samba
將要使用
samba
分享檔案的 Linux 帳號加入 sambshare
群組:sudo usermod -a -G sambashare pi
設定
pi
這個 samba 帳號的密碼:sudo pdbedit -a -u pi
編輯
/etc/samba/smb.conf
設定檔,加入以下設定。首先讓連結檔都可以正常使用:[global] # 允許使用連結檔 follow symlinks = yes # 允許連結到目錄之外 wide links = yes # 關閉 CIFS UNIX extensions unix extensions = no
再將
pi
家目錄分享出來:[pi] comment = pi's home path = /home/pi read only = no guest ok = no browseable = yes create mask = 0644 directory mask = 0755
接著重新啟動
samba
服務:service smbd restart
這樣就完成 samba 的設定了。
在 Windows 中我們可以在檔案總管的網址列輸入兩個反斜線加上樹莓派的 IP 位址:
\\192.168.0.150
這樣就可以透過網路芳鄰存取樹莓派中的檔案了,打開這個位址時,應該就會看到 pi 的家目錄。
留言
張貼留言