Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
weboob
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Ludovic LANGE
weboob
Commits
751ddeea
Commit
751ddeea
authored
Jun 27, 2013
by
Laurent Bachelier
🐧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No deps by default on local install
parent
799e0512
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
tools/local_install.py
tools/local_install.py
+14
-2
No files found.
tools/local_install.py
View file @
751ddeea
...
...
@@ -4,13 +4,24 @@ import subprocess
import
sys
import
os
if
'--deps'
in
sys
.
argv
:
sys
.
argv
.
remove
(
'--deps'
)
deps
=
[]
else
:
deps
=
[
'--nodeps'
]
print
"Weboob local installer"
print
if
len
(
sys
.
argv
)
<
2
:
print
"This tool will install Weboob to be usuable without requiring"
print
"messing with your system, which should only be touched by a package manager."
print
print
"Usage:
%
s DESTINATION"
%
sys
.
argv
[
0
]
print
"Usage:
%
s DESTINATION [OPTIONS]"
%
sys
.
argv
[
0
]
print
print
"By default, no dependencies are installed, as you should try"
print
"to install them from your package manager as much as possible."
print
"To install all the missing dependencies, add the option --deps"
print
"at the end of the command line."
print
print
>>
sys
.
stderr
,
"Error: Please provide a destination, "
\
"for example ‘
%
s/bin’"
%
os
.
getenv
(
'HOME'
)
...
...
@@ -19,9 +30,10 @@ else:
dest
=
os
.
path
.
expanduser
(
sys
.
argv
[
1
])
print
"Installing weboob applications into ‘
%
s’."
%
dest
subprocess
.
check_call
(
[
sys
.
executable
,
'setup.py'
,
'install'
,
'--user'
,
'--install-scripts'
,
dest
]
+
sys
.
argv
[
2
:],
'install'
,
'--user'
,
'--install-scripts'
,
dest
]
+
sys
.
argv
[
2
:]
+
deps
,
cwd
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
os
.
pardir
))
subprocess
.
check_call
([
sys
.
executable
,
os
.
path
.
join
(
dest
,
'weboob-config'
),
'update'
])
...
...
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