Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleHub
提交
cc67c35c
P
PaddleHub
项目概览
PaddlePaddle
/
PaddleHub
1 年多 前同步成功
通知
283
Star
12117
Fork
2091
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
200
列表
看板
标记
里程碑
合并请求
4
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleHub
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
200
Issue
200
列表
看板
标记
里程碑
合并请求
4
合并请求
4
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
cc67c35c
编写于
6月 12, 2019
作者:
B
BinLong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix codestyle errors
上级
940b6457
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
12 addition
and
8 deletion
+12
-8
paddlehub/module/manager.py
paddlehub/module/manager.py
+12
-8
未找到文件。
paddlehub/module/manager.py
浏览文件 @
cc67c35c
...
...
@@ -46,7 +46,8 @@ class LocalModuleManager(object):
desc
=
module_desc_pb2
.
ModuleDesc
()
with
open
(
desc_pb_path
,
"rb"
)
as
fp
:
desc
.
ParseFromString
(
fp
.
read
())
info
[
'version'
]
=
desc
.
attr
.
map
.
data
[
"module_info"
].
map
.
data
[
"version"
].
s
info
[
'version'
]
=
desc
.
attr
.
map
.
data
[
"module_info"
].
map
.
data
[
"version"
].
s
except
:
return
False
,
None
return
True
,
info
...
...
@@ -62,7 +63,8 @@ class LocalModuleManager(object):
valid
,
info
=
self
.
check_module_valid
(
sub_dir_path
)
if
valid
:
module_name
=
sub_dir_name
self
.
modules_dict
[
module_name
]
=
(
sub_dir_path
,
info
[
'version'
])
self
.
modules_dict
[
module_name
]
=
(
sub_dir_path
,
info
[
'version'
])
return
self
.
modules_dict
def
search_module
(
self
,
module_name
,
module_version
=
None
,
update
=
False
):
...
...
@@ -73,12 +75,13 @@ class LocalModuleManager(object):
self
.
all_modules
(
update
=
True
)
module_info
=
self
.
modules_dict
.
get
(
module_name
,
None
)
if
module_info
:
if
not
module_version
or
module_version
==
self
.
modules_dict
[
module_name
][
1
]:
if
not
module_version
or
module_version
==
self
.
modules_dict
[
module_name
][
1
]:
module_dir
=
self
.
modules_dict
[
module_name
][
0
]
module_tag
=
module_name
if
not
module_version
else
'%s-%s'
%
(
module_name
,
module_version
)
module_name
,
module_version
)
tips
=
"Module %s already installed in %s"
%
(
module_tag
,
module_dir
)
module_dir
)
return
True
,
tips
,
self
.
modules_dict
[
module_name
]
search_result
=
hub
.
default_hub_server
.
get_module_url
(
...
...
@@ -87,8 +90,8 @@ class LocalModuleManager(object):
md5_value
=
search_result
.
get
(
'md5'
,
None
)
installed_module_version
=
search_result
.
get
(
'version'
,
None
)
#TODO(wuzewu): add compatibility check
if
not
url
or
(
module_version
is
not
None
and
installed_module_version
!=
module_version
):
if
not
url
or
(
module_version
is
not
None
and
installed_module_version
!=
module_version
):
tips
=
"Can't find module %s"
%
module_name
if
module_version
:
tips
+=
" with version %s"
%
module_version
...
...
@@ -124,7 +127,8 @@ class LocalModuleManager(object):
if
not
module_name
in
self
.
modules_dict
:
tips
=
"%s is not installed"
%
module_name
return
True
,
tips
if
module_version
and
module_version
!=
self
.
modules_dict
[
module_name
][
1
]:
if
module_version
and
module_version
!=
self
.
modules_dict
[
module_name
][
1
]:
tips
=
"%s-%s is not installed"
%
(
module_name
,
module_version
)
return
True
,
tips
tips
=
"Successfully uninstalled %s"
%
module_name
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录