Seguí este tutorial de Magento DevDocs para instalar datos de muestra después de instalar Magento 2.
Pero después de ejecutar el último comando ./bin/magento sampledata:deploy
me sale el siguiente error:
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- The requested package magento/module-offline-shipping-sample-data could not be found in any version, there may be a typo in the package name.
Problem 2
- The requested package magento/module-theme-sample-data could not be found in any version, there may be a typo in the package name.
Problem 3
- The requested package magento/module-sales-sample-data could not be found in any version, there may be a typo in the package name.
Problem 4
- The requested package magento/module-msrp-sample-data could not be found in any version, there may be a typo in the package name.
Problem 5
- The requested package magento/module-sales-rule-sample-data could not be found in any version, there may be a typo in the package name.
Problem 6
- The requested package magento/module-configurable-sample-data could not be found in any version, there may be a typo in the package name.
Problem 7
- The requested package magento/module-product-links-sample-data could not be found in any version, there may be a typo in the package name.
Problem 8
- The requested package magento/module-catalog-rule-sample-data could not be found in any version, there may be a typo in the package name.
Problem 9
- The requested package magento/module-grouped-product-sample-data could not be found in any version, there may be a typo in the package name.
Problem 10
- The requested package magento/module-tax-sample-data could not be found in any version, there may be a typo in the package name.
Problem 11
- The requested package magento/module-catalog-sample-data could not be found in any version, there may be a typo in the package name.
Problem 12
- The requested package magento/module-downloadable-sample-data could not be found in any version, there may be a typo in the package name.
Problem 13
- The requested package magento/module-cms-sample-data could not be found in any version, there may be a typo in the package name.
Problem 14
- The requested package magento/module-bundle-sample-data could not be found in any version, there may be a typo in the package name.
Problem 15
- The requested package magento/module-swatches-sample-data could not be found in any version, there may be a typo in the package name.
Problem 16
- The requested package magento/module-widget-sample-data could not be found in any version, there may be a typo in the package name.
Problem 17
- The requested package magento/module-review-sample-data could not be found in any version, there may be a typo in the package name.
Problem 18
- The requested package magento/module-customer-sample-data could not be found in any version, there may be a typo in the package name.
Problem 19
- The requested package magento/module-wishlist-sample-data could not be found in any version, there may be a typo in the package name.
Potential causes:
- A typo in the package name
- The package is not available in a stable-enough version according to your minimum-stability setting
see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details.
No he podido encontrar una solución y, para ser sincero, me falta mucho conocimiento del compositor. Cualquier ayuda sera bienvenida.
magento2
composer
sample-data
Sander Mangel
fuente
fuente
Respuestas:
También he tenido problemas para instalar los datos de muestra. Parece que algo está roto actualmente (octubre de 2015) y las instrucciones en los devdocs tampoco funcionaron para mí. Estaba experimentando los mismos problemas con el compositor y
magento sampledata:install
ni siquiera está allí.En cambio, he estado siguiendo las instrucciones del "Repositorio de GitHub" en el archivo Léame de los datos de muestra :
Simplemente clone el repositorio en algún lugar (puede estar fuera de la carpeta de su proyecto, ya que la herramienta se encarga de simular los módulos individuales):
Luego ejecute el script "instalador":
Después de eso, ejecute el script de actualización:
Y debería ver que se están instalando los datos de muestra (lleva un tiempo ...):
No olvides borrar los cachés y corregir los permisos y ahora deberías ver todos los datos de muestra en el backend y la interfaz ...
fuente
PHP Fatal error: Interface 'Magento\Framework\Serialize\SerializerInterface' not found
aparece un error en la terminal mientras exista el archivo SerializerInterface.php.Tuve el mismo problema Se corrigió al ir al directorio raíz y especificar los repositorios para el compositor con el siguiente comando (use https para evitar la advertencia del compositor):
Después de esto
trabajó como estaba previsto
fuente
Los cambios recientes en el código permiten instalar datos de muestra utilizando la rama de desarrollo Magento 2 CE GitHub, siempre que clone el Magento 2 y los repositorios de datos de muestra.
Este método de instalación de datos de muestra se aumentará en el momento de GA con una opción de línea de comandos y una opción de Composer; sin embargo, actualmente, AFAIK, esta es la única forma de instalar datos de muestra con la rama de desarrollo.
En breve:
Tenga en cuenta que si ejecuta el Asistente de configuración, es posible que vea excepciones con aproximadamente un 90% de avance. Si es así, configure nuevamente el permiso y la propiedad del sistema de archivos (muy probablemente como root).
Detalles: http://devdocs.magento.com/guides/v2.0/install-gde/install/web/install-web-sample-data.html
fuente
En la primera sección, agregue
"minimum-stability": "beta"
, antes de la licencia.fuente
install
comando disponiblehttps://packages.magento.com es la antigua url del paquete para que Magento cambie el archivo composer.json a https://repo.magento.com
fuente
En caso de que también puedas usar esta alternativa:
y entonces:
se le pedirá el nombre de usuario / contraseña: uso public_key / private_key de su cuenta de mercado de Magento
fuente