FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
gopy/python.go at master · go-python/gopy · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
go-python
/
gopy
Public
Notifications
You must be signed in to change notification settings
Fork
135
Star
2.3k
Code
Issues
56
Pull requests
6
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
gopy
/
python.go
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (30 loc) · 880 Bytes
Breadcrumbs
gopy
/
python.go
Copy path
File metadata and controls
37 lines (30 loc) · 880 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2015 The go-python Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
main
import
(
"fmt"
"os/exec"
"strconv"
"strings"
"github.com/pkg/errors"
)
// getPythonVersion returns the python version available on this machine
func
getPythonVersion
(
vm
string
) (
int
,
error
) {
py
,
err
:=
exec
.
LookPath
(
vm
)
if
err
!=
nil
{
return
0
,
fmt
.
Errorf
(
"gopy: could not locate 'python' executable (err: %v)"
,
err
,
)
}
out
,
err
:=
exec
.
Command
(
py
,
"-c"
,
"import sys; print(sys.version_info.major)"
).
Output
()
if
err
!=
nil
{
return
0
,
errors
.
Wrapf
(
err
,
"gopy: error retrieving python version"
)
}
vers
,
err
:=
strconv
.
Atoi
(
strings
.
TrimSpace
(
string
(
out
)))
if
err
!=
nil
{
return
0
,
errors
.
Wrapf
(
err
,
"gopy: error retrieving python version"
)
}
return
vers
,
nil
}
Back
|
FazBrowse Home
|
New Git URL