`npm list --global`没有显示任何包

时间:2017-10-08 09:52:10

标签: npm

我希望Activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/galleryRecyclerView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignEnd="@+id/captureButton"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:layout_marginStart="25dp"
        android:layout_marginTop="28dp"
        android:layout_toStartOf="@+id/captureButton" />

    <Button
        android:id="@+id/captureButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="24dp"
        android:text="@string/CaptureButtonString" />

    <TextureView
        android:id="@+id/textureView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_alignParentStart="true" />

</RelativeLayout>
能告诉我<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <android.support.v7.widget.RecyclerView android:id="@+id/galleryRecyclerView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignEnd="@+id/captureButton" android:layout_alignParentStart="true" android:layout_alignParentTop="true" android:layout_marginStart="25dp" android:layout_marginTop="28dp" android:layout_toStartOf="@+id/captureButton" /> <Button android:id="@+id/captureButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:layout_marginBottom="24dp" android:text="@string/CaptureButtonString" /> <TextureView android:id="@+id/textureView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentStart="true" /> </RelativeLayout>中的软件包:

npm list --global

但相反,它正在寻找其他地方:

$(npm -g root)

这是我的配置:

$ npm -g root
/home/ravi/.local/share/npm/lib/node_modules
$ ls $(npm -g root) | head -n3
abbrev
acorn
acorn-dynamic-import

如何使用$ npm list --global /home/ravi/.local/share/npm/lib └── (empty) 并获得有意义的输出?

0 个答案:

没有答案