Maps installieren

  • Hallo,

    ich wollte Maps (http://plone.org/products/maps) installieren um paar Daten auf meiner Site zu visualisieren. Leider schlägt die Installation mittels easy_install (wie ich es bisher immer gemacht hab) fehl:

    easy_install Products.Maps
    Searching for Products.Maps
    Reading http://pypi.python.org/simple/Products.Maps/
    No local packages or download links found for Products.Maps
    error: Could not find suitable distribution for Requirement.parse('Products.Maps')

    Woran liegt das bzw. wie kann ich das jetzt installieren? Ein auspacken in dem Products-Folder zeigt es auch nicht als zu inst. Zusatzprodukt in Plone an..

  • Hallo,

    habe es gerade mal im dry-modus probiert:

    Code
    easy_install -n Products.Maps
    Searching for Products.Maps
    Reading [URL]http://pypi.python.org/simple/Products.Maps/[/URL]
    Reading [URL]http://plone.org/products/maps[/URL]
    Reading [URL]http://plone.org/products/maps/releases[/URL]
    Best match: Products.Maps 2.0
    Downloading [URL]http://pypi.python.org/packages/source/P/Products.Maps/Products.Maps-2.0.tar.gz#md5=6d937865c43f8f78f5f14979dbb13516[/URL]
    Processing Products.Maps-2.0.tar.gz
    Running Products.Maps-2.0/setup.py -n -q bdist_egg --dist-dir /tmp/easy_install-wfAvdZ/Products.Maps-2.0/egg-dist-tmp-6M6FJg
    warning: install_lib: 'build/lib' does not exist -- no Python modules to install

    Funktioniert. Also entweder hast du bei dir ein Python Problem oder er konnte es temporär nicht finden.

    Aber Frage warum machst du es so? Plone Add'ons via easy_install zu installieren ist tückisch, weil es nur bei Products.* und mit dem neuen zcml autoinclude funktioniert. Warum nicht via buildout?

    Beim alten Plone 2 weg musst du anbderst auspacken: das was in http://Products.Maps/Products/ liegt, also Maps muss in Products Verzeichniss von Zope.

    Viel Erfolg

    Gruss Pumukel

    Die beste Informationsquelle sind Leute, die versprochen haben, nichts weiterzuerzählen.

    Marcel Mart
    frz. Schriftsteller

  • Hallo,

    ich wollte Maps (http://plone.org/products/maps) installieren um paar Daten auf meiner Site zu visualisieren. Leider schlägt die Installation mittels easy_install (wie ich es bisher immer gemacht hab) fehl:

    easy_install Products.Maps
    Searching for Products.Maps
    Reading http://pypi.python.org/simple/Products.Maps/
    No local packages or download links found for Products.Maps
    error: Could not find suitable distribution for Requirement.parse('Products.Maps')

    Woran liegt das bzw. wie kann ich das jetzt installieren? Ein auspacken in dem Products-Folder zeigt es auch nicht als zu inst. Zusatzprodukt in Plone an..

    Zope Producte via easy_install global zu installieren ist ein NO-GO - außer man verwendet eine virtualisierte Umgebung via virtualenv. Ansonsten ist der offzielle Weg die Verwendung von zc.buildout. Zope und andere relevante Packages in ein globales Python zu installieren ist worst-practise.