我正在尝试通过pip安装pytautogui,但一直遇到问题。这是在Mac上。我试过在python 2.7和3.6.1下运行命令,但没有成功。
import tensorflow as tf
slim = tf.contrib.slim
x = tf.Variable([1,2,1,3])
x, _ = tf.unique(x)
print(x.shape)
y = tf.train.batch([x], 32, dynamic_pad=True)
with tf.Session() as sess:
tf.global_variables_initializer().run()
with slim.queues.QueueRunners(sess):
_y = sess.run(y)
print(_y.shape)
我在这里缺少什么,我已经安装了pyobjc-core但是没有解决它?这看起来像是pyautogui安装程序的问题吗?
感谢您的帮助。
答案 0 :(得分:1)
在这样的问题上你应该:
答案 1 :(得分:0)
要检查是否已安装必需软件包pyobjc
和pyobjc-core
pip list | grep pyobjc
尝试:
pip install pyobjc
pip install pyobjc-core
您应该收到一条Requirement already satisfied
消息。否则它将安装。
如果遇到错误或错误,请尝试使用此方法重新安装:
pip install pyobjc --upgrade --force
pip install pyobjc-core --upgrade --force
那应该可以解决您的问题。
答案 2 :(得分:0)
sudo pip3 install pyobjc --upgrade --force
sudo pip3 install pyobjc-core --upgrade --force