#前提
Twitter bot を作ろうとしています。
そのコードはこの記事と同じです
https://yoka-leisure.com/twitter-bot-python/
#準備物
・ tweet.py(プログラムファイル)
・ runtime.txt(Pythonのバージョンを記載)
・ requirements.txt(インストールするモジュールを記載)
・ Procfile(プログラムの実行方法を記載)
##main.py(プログラムファイル)
→前提に記したコードを記載しています。
##runtime.txt(Pythonのバージョンを記載)
→python-3.6.5
##requirements.txt(インストールするモジュールを記載)
→beautifulsoup4==4.8.1
bs4==0.0.1
certifi==2019.9.11
chardet==3.0.4
idna==2.8
lxml==4.5.0
oauthlib==3.1.0
Pillow==7.0.0
PySocks==1.7.1
requests==2.22.0
requests-oauthlib==1.3.0
schedule==0.6.0
six==1.14.0
slackweb==1.0.5
soupsieve==1.9.5
tweepy==3.8.0
urllib3==1.25.6
##Procfile(プログラムの実行方法を記載)
web: python tweet.py
#課題
git add . git commit -m "First commit" git push heroku master
を実行し
heroku ps:scale web=1
を入力すると
Couldn't find that process type (web).
このようになります。
#ためしたこと
・Procfileを"Procfile"としてみる
・Procfileの中身を
web: python tweet.py→web: python tweetとしてみる
・heroku buildpacks:set heroku/python
→すでに設定ずみ
$ls -l total 12 -rw------- 1 u30233 dyno 27 Feb 22 07:59 ' "Procfile"' -rw------- 1 u30233 dyno 267 Feb 22 07:59 requirements.txt -rw------- 1 u30233 dyno 12 Feb 22 07:59 runtime.txt ~ $ cat Procfile cat: Procfile: No such file or directory
解決できていません。
お力を貸して下さい
回答1件
あなたの回答
tips
プレビュー