我最近在我的Mac上安装了自制软件,同时遵循了一个指导某人本地运行某些事情的指南。我还安装并更新了'pip'。我遇到命令问题:
Try
Dim StrConn As [String] = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & fname & ";Extended Properties=""Excel 12.0 Xml;HDR=YES"";"
Dim Conn As New OleDbConnection(StrConn)
Conn.Open()
'Dim dtSheets As DataTable =
' Conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, New Object() {Nothing, Nothing, Nothing, "Table"})
'Dim listSheet As New List(Of String)
Location.Text = fname 'Label Control
SheetName.Items.Clear() ' Combobox clear
SheetName.Items.AddRange(Conn.GetSchema("Tables", New String() {Nothing, Nothing, Nothing, "TABLE"}
).AsEnumerable().Select(Function(d) d("TABLE_NAME").ToString.Replace("$", "")).Distinct().ToArray) 'Binding All sheetname to combobox
Catch ex As Exception
Log.ErrorMessage(ex.Message, Me.Name) 'local log creation manual code
End Try
我得到以下消息作为回报:
sudo pip install hg+http://bitbucket.org/pygame/pygame
我拥有对计算机的完全访问权限,所以我不知道第一部分是什么,我假设最后一部分是关于'hg'的问题?如果有人能提供帮助,我们将非常感激。
另请注意,虽然我没有终端/自制命令的经验,也不知道有多少意思/做什么,但我确实理解编码,尤其是python。
谢谢!
答案 0 :(得分:0)
如果您使用的是Python,请尝试安装pygame pip install pygame
;如果您使用的是Python3,请尝试pip3 install pygame
。如果您查看错误的底部,它会告诉您没有安装hg
。您应该可以直接安装,如上所述。