Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
474ae9a8
Commit
474ae9a8
authored
Jun 11, 2016
by
Davis E. King
Committed by
GitHub
Jun 11, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #136 from AbdealiJK/ajk/setup
setup.py: Don't fail if pip fails in cmake err msg
parents
87dff094
8da4053c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
setup.py
setup.py
+8
-4
No files found.
setup.py
View file @
474ae9a8
...
@@ -468,15 +468,19 @@ class build(_build):
...
@@ -468,15 +468,19 @@ class build(_build):
message
=
msg_pkgmanager
.
format
(
'OSX'
,
manager
)
message
=
msg_pkgmanager
.
format
(
'OSX'
,
manager
)
break
break
elif
sys
.
platform
.
startswith
(
'linux'
):
elif
sys
.
platform
.
startswith
(
'linux'
):
distname
=
None
try
:
try
:
import
distro
import
distro
except
ImportError
:
except
ImportError
as
err
:
import
pip
import
pip
pip_exit
=
pip
.
main
([
'install'
,
'distro'
])
pip_exit
=
pip
.
main
([
'install'
,
'
-q'
,
'
distro'
])
if
pip_exit
>
0
:
if
pip_exit
>
0
:
raise
SystemExit
(
'Pip was unable to install `distro`'
)
log
.
debug
(
"Unable to install `distro` to identify "
"the recommended command. Falling back "
"to default error message."
)
distro
=
err
else
:
import
distro
import
distro
if
not
isinstance
(
distro
,
ImportError
):
distname
=
distro
.
id
()
distname
=
distro
.
id
()
if
distname
in
(
'debian'
,
'ubuntu'
):
if
distname
in
(
'debian'
,
'ubuntu'
):
message
=
msg_pkgmanager
.
format
(
message
=
msg_pkgmanager
.
format
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment