我正在使用谷歌应用引擎创建一个访问预测API的应用程序。我可以在网站上更新它时运行该应用程序,但是我无法在localhost:8080上运行它。
我是绝对的菜鸟,非常感谢任何帮助。
以下是错误:
<type 'exceptions.IOError'>: [Errno 13] file not accessible: '/dev/urandom'
args = (13, 'file not accessible')
errno = 13
filename = '/dev/urandom'
message = ''
strerror = 'file not accessible'
答案 0 :(得分:1)
您如何访问/ dev / urandom?该文件在生产中无法访问,不应在dev_appserver中访问。如果要生成随机数据,请使用os.urandom(),它将在本地和生产环境中正常工作。