3

我正在使用 google app engine 创建一个访问预测 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' 
4

1 回答 1

1

你如何访问/dev/urandom?该文件在生产中不可访问,并且不应在 dev_appserver 中访问。如果要生成随机数据,请使用 os.urandom() 它将在本地和生产环境中正常工作。

于 2012-12-20T01:46:20.513 回答